home *** CD-ROM | disk | FTP | other *** search
- package Win32::NetAdmin;
-
- #
- #NetAdmin.pm
- #Written by Douglas Lankshear for hip communications.
- #
-
- require Exporter;
- require DynaLoader;
-
- die "The Win32::NetAdmin module works only on Windows NT" if(!Win32::IsWinNT() );
-
- @ISA= qw( Exporter DynaLoader );
- # Items to export into callers namespace by default. Note: do not export
- # names by default without a very good reason. Use EXPORT_OK instead.
- # Do not simply export all your public functions/methods/constants.
- @EXPORT = qw(
- UF_TEMP_DUPLICATE_ACCOUNT
- UF_NORMAL_ACCOUNT
- UF_INTERDOMAIN_TRUST_ACCOUNT
- UF_WORKSTATION_TRUST_ACCOUNT
- UF_SERVER_TRUST_ACCOUNT
- UF_MACHINE_ACCOUNT_MASK
- UF_ACCOUNT_TYPE_MASK
- UF_DONT_EXPIRE_PASSWD
- UF_SETTABLE_BITS
- UF_SCRIPT
- UF_ACCOUNTDISABLE
- UF_HOMEDIR_REQUIRED
- UF_LOCKOUT
- UF_PASSWD_NOTREQD
- UF_PASSWD_CANT_CHANGE
- USE_FORCE
- USE_LOTS_OF_FORCE
- USE_NOFORCE
- USER_PRIV_MASK
- USER_PRIV_GUEST
- USER_PRIV_USER
- USER_PRIV_ADMIN
- );
-
- =head1 NAME
-
- Win32::NetAdmin - manage network groups and users in perl
-
- =head1 SYNOPSIS
-
- use Win32::NetAdmin;
-
- =head1 DESCRIPTION
-
- This module offers control over the administration of groups and users over a network.
-
- =head1 FUNCTIONS
-
- =head2 NOTE:
- all of the functions return FALSE (0) if they fail, unless otherwise noted.
- server is optional for all the calls below. (if not given the local machine is assumed.)
-
- =over 10
-
- =item GetDomainController(server, domain, returnedName)
- Return the name of the domain controller for server
-
- =item UserCreate(server, userName, password, passwordAge, privilege, homeDir, comment, flags, scriptPath)
- Creates a user on server with password, passwordAge, privilege, homeDir, comment, flags, and scriptPath
-
- =item UserDelete(server, user)
- Deletes a user from server
-
- =item UserGetAttributes(server, userName, password, passwordAge, privilege, homeDir, comment, flags, scriptPath)
- Gets password, passwordAge, privilege, homeDir, comment, flags, and scriptPath for user
-
- =item UserSetAttributes(server, userName, password, passwordAge, privilege, homeDir, comment, flags, scriptPath)
- Sets password, passwordAge, privilege, homeDir, comment, flags, and scriptPath for user
-
- =item GroupCreate(server, group, comment)
- Creates a group
-
- =item GroupDelete(server, group)
- Deletes a group
-
- =item GroupGetAttributes(server, groupName, comment)
- Gets the comment
-
- =item GroupSetAttributes(server, groupName, comment)
- Sets the comment
-
- =item GroupAddUsers(server, groupName, users)
- Adds a user to a group
-
- =item GroupDelUsers(server, groupName, users)
- Deletes a users from a group
-
- =item GroupIsMember(server, groupName, user)
- Returns TRUE if user is a member of groupName
-
- =item GroupGetMembers(server, groupName, userArray)
- Fills userArray with the members of groupName
-
- =item LocalGroupCreate(server, group, comment)
- Creates a local group
-
- =item LocalGroupDelete(server, group)
- Deletes a local group
-
- =item LocalGroupGetAttributes(server, groupName, comment)
- Gets the comment
-
- =item LocalGroupSetAttributes(server, groupName, comment)
- Sets the comment
-
- =item LocalGroupIsMember(server, groupName, user)
- Returns TRUE if user is a member of groupName
-
- =item LocalGroupGetMembers(server, groupName, userArray)
- Fills userArray with the members of groupName
-
- =item LocalGroupAddUsers(server, groupName, users)
- Adds a user to a group
-
- =item LocalGroupDelUsers(server, groupName, users)
- Deletes a users from a group
-
- =back
-
- =cut
-
- sub AUTOLOAD {
- # This AUTOLOAD is used to 'autoload' constants from the constant()
- # XS function. If a constant is not found then control is passed
- # to the AUTOLOAD in AutoLoader.
-
- local($constname);
- ($constname = $AUTOLOAD) =~ s/.*:://;
- #reset $! to zero to reset any current errors.
- $!=0;
- $val = constant($constname, @_ ? $_[0] : 0);
- if ($! != 0) {
- if ($! =~ /Invalid/) {
- $AutoLoader::AUTOLOAD = $AUTOLOAD;
- goto &AutoLoader::AUTOLOAD;
- }
- else {
- ($pack,$file,$line) = caller;
- die "Your vendor has not defined NetAdmin macro $constname, used in $file at line $line.";
- }
- }
- eval "sub $AUTOLOAD { $val }";
- goto &$AUTOLOAD;
- }
-
- bootstrap Win32::NetAdmin;
-
- # Preloaded methods go here.
-
- # Autoload methods go after __END__, and are processed by the autosplit program.
-
- 1;
- __END__
-
-
-
-
-
-
-
-
-
-
-